home *** CD-ROM | disk | FTP | other *** search
/ Utilities Professional 1-1500 / Utilities Professional 1-1500 (1994)(WPD)[!].iso / 12511500 / var1286.dms / var1286.adf / printers / IBMColorJet / PrinterTag.asm < prev    next >
Assembly Source File  |  1992-09-02  |  2KB  |  65 lines

  1. * IBM ColourJet *
  2. * ColourJet/PrinterTag.asm *
  3. **********************************************************************
  4. *
  5. *    printer device dependent code tag
  6. *
  7. **********************************************************************
  8.  
  9.      SECTION        printer
  10.  
  11. *------ Included Files -----------------------------------------------
  12.  
  13.      INCLUDE        "exec/types.i"
  14.      INCLUDE        "exec/nodes.i"
  15.      INCLUDE        "exec/strings.i"
  16.      INCLUDE        "devices/prtbase.i"
  17.  
  18. *------ Imported Names -----------------------------------------------
  19.  
  20.      XREF      _Init
  21.      XREF      _Expunge
  22.      XREF      _Open
  23.      XREF      _Close
  24.      XREF      _CommandTable
  25.      XREF      _PrinterSegmentData
  26.      XREF      _DoSpecial
  27.      XREF      _Render
  28.  
  29. *------ Exported Names -----------------------------------------------
  30.  
  31.      XDEF      _PEDData
  32.  
  33. **********************************************************************
  34.  
  35.           MOVEQ     #0,D0          ; show error for OpenLibrary()
  36.           RTS
  37.           DC.W 1                   ; VERSION
  38.           DC.W 0                   ; REVISION
  39. _PEDData:
  40.           DC.L printerName
  41.           DC.L _Init
  42.           DC.L _Expunge
  43.           DC.L _Open
  44.           DC.L _Close
  45.           DC.B PPC_COLORGFX   ; PrinterClass
  46.           DC.B PCC_BGRW       ; ColorClass Red/Blue/Green/White
  47.           DC.B 80             ; MaxColumns
  48.           DC.B 2              ; NumCharSets
  49.           DC.W 1              ; NumRows
  50.           DC.L 800            ; MaxXDots  (80 cols at 100 dpi)
  51.           DC.L 0              ; MaxYDots  (no limit per page)
  52.           DC.W 100            ; XDotsInch
  53.           DC.W 96             ; YDotsInch (max = 96, norm = 72)
  54.           DC.L _CommandTable  ; Commands
  55.           DC.L _DoSpecial
  56.           DC.L _Render
  57.           DC.L 30             ; Seconds until time out
  58.           DC.L 0              ; 8 Bit Characters
  59.  
  60. printerName:
  61.           STRING    <'IBM ColourJet'>
  62.  
  63.           END
  64. *****************  End of File: ColourJet/PrinterTag.asm  ******************
  65.